
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 80px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #333;
}
/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Countdown Styles */
.countdown-container {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    margin: 3rem auto;
    max-width: 800px;
    text-align: center;
}

.countdown-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.countdown-box {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 0.5rem;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
}

.countdown-label {
    font-size: 0.9rem;
    opacity: 0.8;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    section {
        scroll-margin-top: 60px;
    }
}
